6dc966a83269a207a5538850648ea23697c682bc,plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOActionBarContributor.java,CDOActionBarContributor,selectionChanged,#SelectionChangedEvent#,357
Before Change
{
if (readLockObjectsAction != null)
{
readLockObjectsAction.selectionChanged((IStructuredSelection)selection);
}
if (writeLockObjectsAction != null)
After Change
{
if (((IStructuredSelection)selection).size() == 1)
{
autoReleaseLockExemptionAction.selectionChanged((IStructuredSelection)selection);
Object object = ((IStructuredSelection)selection).getFirstElement();